home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / DB / RDBMS72 / MGRTSAMP.SQL < prev    next >
Encoding:
Text File  |  1995-10-05  |  1.2 KB  |  36 lines

  1. REM 
  2. REM C714722.SQL 95/10/4  Copyright (c) 1995 Oracle Corporation
  3. REM
  4. REM This SQL script is used in migrating a Personal Oracle7
  5. REM for Windows 3.1 databse to Personal Oracle7 for Windows 95.
  6. REM
  7. REM It is a sample file which is editied to migrate the files
  8. REM for a specific database.  The files listed are the default
  9. REM database files that are used by the starter database for
  10. REM Personal Oracle7 for Windows 3.1.  C:\ORAWIN is assumed
  11. REM to be the Oracle_Home directory for Personal Oracle7 for
  12. REM Windows 3.1 and D:\ORAWIN95 is assumed to be the
  13. REM Oracle_Home directory for Personal Oracle7 for Windows 95.
  14. REM 
  15. REM For each database file the full file pathanme must be
  16. REM provided for both the original file location and the
  17. REM location to which it being moved.
  18. REM
  19. alter database rename file
  20. 'C:\ORAWIN\DBS\WDBRBS.ORA',
  21. 'C:\ORAWIN\DBS\WDBSYS.ORA',
  22. 'C:\ORAWIN\DBS\WDBTEMP.ORA',
  23. 'C:\ORAWIN\DBS\WDBUSER.ORA',
  24. 'C:\ORAWIN\DBS\WDBLOG1.ORA',
  25. 'C:\ORAWIN\DBS\WDBLOG2.ORA'
  26. to
  27. 'D:\ORAWIN95\DATABASE\WDBRBS.ORA',
  28. 'D:\ORAWIN95\DATABASE\WDBSYS.ORA',
  29. 'D:\ORAWIN95\DATABASE\WDBTEMP.ORA',
  30. 'D:\ORAWIN95\DATABASE\WDBUSER.ORA',
  31. 'D:\ORAWIN95\DATABASE\WDBLOG1.ORA',
  32. 'D:\ORAWIN95\DATABASE\WDBLOG2.ORA'
  33. ;
  34.  
  35.                         
  36.